home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Keyboard / Keyboard Protocols / TabKeys.h < prev    next >
Text File  |  1997-06-28  |  229b  |  18 lines

  1. // TabKeys.h
  2.  
  3. #ifndef TabKeys_h
  4. #define TabKeys_h
  5.  
  6. #ifndef ContextUser_h
  7. #include "ContextUser.h"
  8. #endif
  9.  
  10. class TabKeys: public ContextUser
  11.   {
  12.     public:
  13.         virtual void TabForward() = 0;
  14.         virtual void TabBackward();
  15.   };
  16.  
  17. #endif
  18.